home *** CD-ROM | disk | FTP | other *** search
/ Ultimate Blitz Basic 2.1 / Ultimate Blitz Basic 2.1 (1997)(Acid Software).iso / installblitz2 < prev    next >
Text File  |  1997-10-09  |  3KB  |  172 lines

  1. (
  2.    (run "copy blitz2/blitz2 to ram:")
  3.    (run "copy blitz2/blitz2.info to ram:")
  4.    (run "copy blitz2/ted to ram:")
  5.    (run "copy blitz2/ted.info to ram:")
  6.    (run "copy blitz2/acidlibs to ram:")
  7.    (run "copy blitz2/defaultdbug to ram:")
  8.    (run "copy blitz2/deflibs to ram:")
  9.    (run "copy blitz2/help to ram:")
  10.    (run "copy blitz2/help.dat to ram:")
  11. )
  12.  
  13. ; ask where to install Blitz2
  14. (set UpdateS_text
  15.       (cat
  16.             "One moment please, updating S:User0Startup"
  17.             newline
  18.             newline
  19.       )
  20. )
  21.  
  22. (set UpdateSPrompt_text
  23.       (cat
  24.       "A Blitz2: assignment needs to be added to the \"S:User-Startup\" "
  25.       "so that your system will be properly configured to use Blitz2."
  26.    )
  27. )
  28.  
  29. (set UpdateSPrompt_texts
  30.       (cat
  31.       "A Blitzlibs: assignment needs to be added to the \"S:User-Startup\" "
  32.       "so that your system will be properly configured to use Blitz2."
  33.    )
  34. )
  35.  
  36.  
  37.  
  38. (set #progname
  39. (cat "Blitz2"
  40. ))
  41.  
  42. (set #prognames
  43. (cat "Blitzlibs"
  44. ))
  45.  
  46.  
  47. (set vc-dest
  48. (askdir
  49.    (prompt "Please select the Directory where you would like to install"
  50.            " Blitz2. ")
  51.    (help @askdir-help)
  52.    (default @default-dest)
  53.    )
  54. )
  55.  
  56.    (set @default-dest vc-dest)
  57.    (set BB  (tackon @default-dest #progname))
  58.    (makedir BB)
  59.  
  60.  
  61. (
  62. (working "Installing Blitz2 Program")
  63. (copyfiles
  64.          (prompt "")
  65.          (help @copyfiles-help)
  66.          (source "Ram:Blitz2")
  67.          (dest BB)
  68.          (infos)
  69. )
  70. )
  71.  
  72. (
  73. (working "Installing Ted Program")
  74. (copyfiles
  75.          (prompt "")
  76.          (help @copyfiles-help)
  77.          (source "Ram:Ted")
  78.          (dest BB)
  79.          (infos)
  80. )
  81. )
  82.  
  83. (
  84. (working "Installing acidlibs")
  85. (copyfiles
  86.          (prompt "")
  87.          (help @copyfiles-help)
  88.          (source "Ram:acidlibs")
  89.          (dest BB)
  90.          (infos)
  91. )
  92. )
  93.  
  94. (
  95. (working "Installing defaultdbug")
  96. (copyfiles
  97.          (prompt "")
  98.          (help @copyfiles-help)
  99.          (source "Ram:Blitz2")
  100.          (dest BB)
  101.          (infos)
  102. )
  103. )
  104.  
  105. (
  106. (working "Installing deflibs")
  107. (copyfiles
  108.          (prompt "")
  109.          (help @copyfiles-help)
  110.          (source "Ram:deflibs")
  111.          (dest BB)
  112.          (infos)
  113. )
  114. )
  115.  
  116. (
  117. (working "Installing help")
  118. (copyfiles
  119.          (prompt "")
  120.          (help @copyfiles-help)
  121.          (source "Ram:help")
  122.          (dest BB)
  123.          (infos)
  124. )
  125. )
  126.  
  127. (
  128. (working "Installing help.dat")
  129. (copyfiles
  130.          (prompt "")
  131.          (help @copyfiles-help)
  132.          (source "Ram:help.dat")
  133.          (dest BB)
  134.          (infos)
  135. )
  136. )
  137.  
  138.  
  139. (startup "Blitz2"
  140.          (prompt UpdateSPrompt_text)
  141.          (help @startup-help)
  142.          (command "ASSIGN Blitz2: " quote BB quote newline)
  143. )
  144.  
  145.    (set @default-dest BB)
  146.    (set BB  (tackon @default-dest #prognames))
  147.    (makedir BB)
  148.  
  149.  
  150. (startup "Blitzlibs"
  151.          (prompt UpdateSPrompt_texts)
  152.          (help @startup-help)
  153.          (command "ASSIGN Blitzlibs: " quote BB quote newline)
  154. )
  155.  
  156.  
  157. (
  158. (run "delete ram:Blitz2")
  159. (run "delete ram:Blitz2.info")
  160. (run "delete ram:Ted")
  161. (run "delete ram:Ted.info")
  162. (run "delete ram:acidlibs")
  163. (run "delete ram:defaultdbug")
  164. (run "delete ram:deflibs")
  165. (run "delete ram:help")
  166. (run "delete ram:help.dat")
  167. )
  168.  
  169. (exit)
  170.  
  171.  
  172.